*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html{
	font-size: 50px;
}
*,body{
	font-family: 'Microsoft YaHei','Arial';
	line-height: 1.2;
	font-size: .28rem;
}
ul,ol,p,h1,h2,h3,h4,h5,h6{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-size: .32rem;
	font-weight: normal;
}
input:focus{
	outline: none;
}
/*修改input提示文字的颜色*/
input::-webkit-input-placeholder { /* WebKit browsers */ 
font-size: inherit;
	color: inherit;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ 
font-size: inherit;
	color: inherit;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */ 
font-size: inherit;
	color: inherit;
}
input:-ms-input-placeholder { /* Internet Explorer 10+ */ 
font-size: inherit;
	color: inherit;
}
/**/

ul::after{
	content: '';
	display: table;
	clear: both;
}
a{
	text-decoration: none!important;
	font-size: inherit;
	color: inherit;
}
a:hover{
	color: inherit;
}
.col-6{
	margin-bottom: 0.6rem;
}
/*分页样式*/
.dux-page{
	text-align: center;
	padding: 0.3rem;
}
.dux-page a,.dux-page span{
	display: inline-block;
 	width: 0.6rem;
	height: 0.6rem;
	color: #000;
	font-size: 12px;
	text-align: center;
	line-height: 0.6rem;
	background-color: #ccc;
	margin: 5px;
	color: #fff;
	transition: all .6s;
	border-radius: 3px;
}
.dux-page a:hover,.dux-page a.Ahover{
	background-color: #005D73!important;
	color: #fff!important;
}
/*文字行数控制*/
.one-line{
  overflow: hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.two-line{
	overflow:hidden;
	 text-overflow:ellipsis;
	 display:-webkit-box;
	 -webkit-line-clamp:2;
	 -webkit-box-orient:vertical;
}
.three-line{
	overflow:hidden;
	 text-overflow:ellipsis;
	 display:-webkit-box;
	 -webkit-line-clamp:3;
	 -webkit-box-orient:vertical;
}
.s-flex{
	display: flex;
	flex-wrap: wrap;
}
.flex{
	display: flex;
	flex-wrap: nowrap;
}
.gray-bg{
	background-color: #F3F3F3;
}
.container{
	max-width: 100%;
	width: 28rem;
}

.swiper-navpage{
	bottom: 0.8rem!important;
}
.swiper-navpage span{
	opacity: 1;
	width: 0.28rem;
	height: 0.28rem;
	background-color: #fff;
	border-radius: 50%;
}
.swiper-navpage span.swiper-pagination-bullet-active{
	background-color: #90C31F;
}

.article,.article *{
	font-size: 0.3rem;
	line-height: 2;
}
.article img{
	max-width: 100%;
}


/*右侧悬浮*/
.fixed-box{
	position: fixed;
	right: 0px;
	top: 30%;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.fixed-box>div{
	display: block;
	min-width: 70px;
	line-height: 2;
	height: 70px;
	background-color: rgba(0, 93, 115, 0.7);
	border: 1px solid #fff;
	margin-bottom: 10px;
	text-align: center;
	transition: all .35s ease-in-out; 
	cursor: pointer;
}
.fixed-box>div .iconfont{
	display: inline-block;
	color: #fff;
	font-size: 28px;
	padding-top: 5px;
}
.fixed-box>div p{
	font-size: 12px;
	color: #fff;
}
.fixed-text{
	width: auto!important;
	white-space: nowrap;
}
.fixed-hover-text{
	display: none;
	font-size: 14px;
	color: #fff;
	line-height: 70px;
	padding: 0 15px;
}
.fixed-box>div:hover{
	background-color: #005D73;
}
.fixed-text:hover .iconfont,.fixed-text:hover p{
	display: none;
}
.fixed-text:hover .fixed-hover-text{
	display: block;
}
.fixed-ewm{
	position: relative;
}
.fixed-hover-ewm{
	position: absolute;
	left: calc(-100% - 40px);
	top: 0;
	width: 100px;
	background-color: #005D73;
	padding: 5px;
	border: 1px solid #fff;
	transform: scale(0);
	transition: all .35s ease-in-out;
}
.fixed-hover-ewm img{
	width: 100%;
}
.fixed-ewm:hover .fixed-hover-ewm{
	transform: scale(1);
}
.fixed-box .fixed-gotop{
	display: none;
}
